home *** CD-ROM | disk | FTP | other *** search
/ Master Visual Basic 3 / Master Visual Basic 3 (SAMS Publishing) (1994).ISO / mvprog / gendll / gendll.def < prev    next >
Encoding:
Text File  |  1994-04-29  |  668 b   |  32 lines

  1. ;-------------------------------------------------------
  2. ; GenDLL.DEF
  3. ;-------------------------------------------------------
  4. ; The DEF file for Generic DLL.
  5. ;
  6. ; Use the following files as templates for building your
  7. ; own DLL:
  8. ;
  9. ; - GenDLL.C
  10. ; - GenDLL.H
  11. ; - GenDLL.DEF (this file)
  12. ;
  13. ;-------------------------------------------------------
  14.  
  15. LIBRARY         GENDLL
  16. EXETYPE         WINDOWS
  17. DESCRIPTION     'Visual Basic Generic DLL'
  18.  
  19. CODE            MOVEABLE
  20. DATA            MOVEABLE SINGLE
  21.  
  22. HEAPSIZE        2048
  23.  
  24. EXPORTS
  25.     WEP     @1      RESIDENTNAME
  26.  
  27.  
  28. SEGMENTS
  29.     WEP_TEXT FIXED
  30.  
  31. ;------------------------------------------------------
  32.